

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
}


.header {
    position: fixed;        
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;              
    padding: 0 40px;
    background: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


.main-content {
    margin-top: 80px;          
}


.store-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.store-buttons img {
    height: 55px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-buttons img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}




.nav-link {
    color: black !important;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-item:nth-child(odd) .nav-link:hover {
    color: #0072B2 !important;   
}

.nav-item:nth-child(even) .nav-link:hover {
    color: #D55E00 !important;  
}



.highlight-block {
    border-left: 4px solid #D55E00;
    padding: 18px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-block span {
    color: #D55E00;
    font-weight: 800;
    font-size: 20px;
}

.highlight-block p {
    font-size: 19px;
    margin: 0;
    color: #333;
}


.highlight-block:hover {
    background: rgba(213, 94, 0, 0.08);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* VIDEO WRAPPER */
.video-wrapper{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
}

.video-slider{
    display:flex;
    flex-direction:column;
    height:300%;
    animation:scrollVideos 18s infinite;
}

.bg-video{
    width:100%;
    height:100vh;
    object-fit:cover;
}

/* VIDEO SCROLL ANIMATION */
@keyframes scrollVideos {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(0); }

    35%  { transform: translateY(-100vh); }
    65%  { transform: translateY(-100vh); }

    70%  { transform: translateY(-200vh); }
    95%  { transform: translateY(-200vh); }

    100% { transform: translateY(0); }
}

/* DARK OVERLAY */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
}

/* CONTENT */
.content-wrapper{
    position:relative;
    z-index:2;
}

.hero-text{
    color:white;
    max-width:650px;
}

/* TITLE */
.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.blue{
    color:#0072B2;
}

.orange{
    color:#D55E00;
}

/* TEXT */
.hero-subtitle{
    font-size:24px;
    font-weight:600;
    color:whitesmoke;
}

.hero-desc{
    font-size:18px;
    opacity:0.85;
}

/* STORE BUTTONS */
.store-buttons img{
    margin-right:10px;
}

.what-section{
    padding:50px 0;
    background:linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
    position:relative;
    overflow:hidden;
}

/* Decorative Background Shape */
.bg-shape{
    position:absolute;
    top:-150px;
    right:-150px;
    width:400px;
    height:400px;
    background:#0072B2;
    opacity:0.08;
    border-radius:50%;
}

/* Section Title */
.what-title{
    font-size:42px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:30px;
}

/* Description Text */
.what-description{
    font-size:20px;
    line-height:1.9;
    color:#333;
    margin-bottom:30px;
}

/* Highlight Blocks */
.highlight-block{
    margin-bottom:15px;
}

.highlight-block p{
    font-size:18px;
    color:#333;
}

.highlight-block span{
    font-weight:700;
    color:#0072B2;
}

/* App Image */
.app-image{
    max-height:480px;
    width:auto;
    object-fit:contain;
    transform:translateY(-10px);
    transition:0.3s ease;
}

.app-image:hover{
    transform:translateY(-10px) scale(1.08);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.platform-section{
    padding:80px 0;
    background:#000;
}

.platform-container{
    width:90%;
    margin:0 auto;
}

.platform-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:60px;
}

/* LEFT SIDE */

.platform-left{
    flex:1;
    min-width:320px;
    display:flex;
    justify-content:center;
}

.image-grid-wrapper{
    position:relative;
    width:100%;
    max-width:600px;
    background:#000;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

.image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:220px 320px;
}

.grid-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.grid-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.overlay-small{
    font-size:26px;
    font-weight:600;
    letter-spacing:4px;
    margin-bottom:15px;
}

.overlay-big{
    font-size:36px;
    font-weight:800;
    margin:8px 0;
}

/* RIGHT SIDE */

.platform-right{
    flex:1;
    min-width:320px;
    background:#ffffff;
    padding:15px 15px 15px 31px;
    box-shadow:0 20px 50px rgba(0,0,0,0.5);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover pop-out effect */
.platform-right:hover{
    transform: scale(1.04);
    box-shadow:0 35px 70px rgba(0,0,0,0.6);
}

.platform-title{
    font-size:36px;
    font-weight:800;
    color:#0072B2;
    line-height:1.4;
    margin-bottom:30px;
}

.platform-list{
    list-style:none;
    padding:0;
    font-size:20px;
    line-height:1.9;
    color:#444;
}

.platform-list li{
    margin-bottom:18px;
}

.bullet{
    color:#D55E00;
    font-weight:700;
    margin-right:8px;
}

.creators-section{
    position:relative;
    padding:70px 0;
    overflow:hidden;
}

/* BACKGROUNDS */

.bg-left{
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    background:#ffffff;
    z-index:-1;
}

.bg-right{
    position:absolute;
    top:0;
    right:0;
    width:42%;
    height:100%;
    background:#0072B2;
    z-index:-1;
}

/* TITLE */

.creators-title-wrapper{
    position:absolute;
    top:16px;
    right:7%;
    z-index:1;
}

.creators-title{
    font-size:34px;
    font-weight:900;
    letter-spacing:4px;
    color:white;
    margin:0;
}

/* BLACK BOX */

.creators-box{
    background:black;
    padding:24px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

/* PHOTOS */

.creators-photos{
    flex:1;
    min-width:250px;
    text-align:center;
}

.photo-wrapper{
    margin-bottom:40px;
}

.creator-img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;
}

.blue-border{
    border:4px solid #0072B2;
}

.orange-border{
    border:4px solid #D55E00;
}

/* CONTENT */

.creators-content{
    flex:2;
    min-width:300px;
    padding-left:50px;
    color:white;
}

.creator-block{
    margin-bottom:40px;
}

.creator-name{
    font-weight:700;
    font-size:28px;
}

.blue-text{
    color:#0072B2;
}

.orange-text{
    color:#D55E00;
}

.creator-desc{
    line-height:1.9;
    font-size:19px;
    color:#cccccc;
}

.faq-section{
    padding:50px 0;
}

/* LEFT SIDE */

.faq-left{
    background:#ffffff;
    padding:70px;
}

.faq-title{
    font-size:32px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:40px;
}

.faq-item{
    border:1px solid #e5e5e5;
    margin-bottom:15px;
}

.faq-button{
    font-weight:700;
    font-size:18px;
}

/* RIGHT SIDE */

.faq-right{
    background:#0072B2;
    padding:100px 60px;
    color:white;
}

.faq-small-title{
    font-size:16px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.faq-big-title{
    font-size:48px;
    font-weight:900;
    line-height:1.2;
}

/* LOGO SECTION */

.logo-section{
    padding:70px 0;
    background:#ffffff;
}

.logo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    align-items:center;
    justify-items:center;
}

.logo-img{
    max-height:80px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover effect */
.logo-img:hover{
    transform: scale(1.12);
    box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

.join-section{
    padding:50px 0;
    background:#ffffff;
}

/* LEFT CONTENT */

.join-title{
    font-size:32px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:20px;
}

.join-text{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

.join-text-space{
    margin-top:15px;
}

.email-highlight{
    color:#D55E00;
}

.contact-title{
    font-size:24px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:40px;
}

/* STORE BUTTONS */

.store-buttons{
    display:flex;
    gap:20px;
}

.store-img{
    height:60px;
    cursor:pointer;
}

/* FORM */

.form-box{
    border-radius:12px;
}

.form-group{
    margin-bottom:15px;
}

.form-input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.submit-btn{
    background:#0072B2;
    color:white;
    border:none;
    padding:12px 30px;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
}

.site-footer{
    background:#f5f5f5;
    padding:10px 0;
    border-top:1px solid #e5e5e5;
}

.footer-container{
    width:90%;
    margin:auto;
    text-align:center;
}

.footer-link{
    margin:0 20px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.footer-link:hover{
    text-decoration:underline;
}